page.tsx 344 B

12345678910111213141516
  1. import type { FC } from 'react'
  2. import React from 'react'
  3. import Main from '@/app/components/explore/installed-app'
  4. export type IInstalledAppProps = {
  5. params: {
  6. appId: string
  7. }
  8. }
  9. const InstalledApp: FC<IInstalledAppProps> = ({ params: { appId } }) => {
  10. return (
  11. <Main id={appId} />
  12. )
  13. }
  14. export default React.memo(InstalledApp)